home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1993 July / InfoMagic USENET CD-ROM July 1993.ISO / answers / software-eng / part1 < prev    next >
Encoding:
Text File  |  1993-06-05  |  13.5 KB  |  327 lines

  1. Newsgroups: comp.software-eng,comp.answers,news.answers
  2. Path: senator-bedfellow.mit.edu!enterpoop.mit.edu!usc!cs.utexas.edu!utnut!torn!news.ccs.queensu.ca!qucis.queensu.ca!qucis.queensu.ca!dalamb
  3. From: dalamb@qucis.queensu.ca (David Alex Lamb)
  4. Subject: FAQ 1: comp.software-eng questions and answers
  5. Message-ID: <questmsg_739281903@qucis.QueensU.CA>
  6. Followup-To: comp.software-eng
  7. Keywords: FAQ
  8. Sender: dalamb@qucis.queensu.ca (David Lamb)
  9. Supersedes: <questmsg_736257904@qucis.QueensU.CA>
  10. Reply-To: dalamb@qucis.queensu.ca (David Alex Lamb)
  11. Organization: Computing and Information Science, Queen's University at Kingston, Ontario,  K7L 3N6, Canada
  12. References: <faqmsg_739281903@qucis.QueensU.CA>
  13. Date: Sat, 5 Jun 1993 12:05:11 GMT
  14. Approved: news-answers-request@MIT.Edu
  15. Expires: Sat, 24 Jul 1993 12:05:03 GMT
  16. Lines: 308
  17. Xref: senator-bedfellow.mit.edu comp.software-eng:14726 comp.answers:882 news.answers:9091
  18.  
  19. Last-Modified: 29 Apr 1993
  20. Archive-name: software-eng/part1
  21.  
  22. This message gives brief answers to questions that have occurred in
  23. comp.software-eng; in many cases they are also topics many readers would like
  24. NOT to see discussed again soon.  Questions are:
  25.    What's a CASE Tool?
  26.    What's a 'function point'?
  27.    What's the 'spiral model'?
  28.    What is a 'specmark'?
  29.    Where can I find a public-domain tool to compute metrics?
  30.    How do I write good C style?
  31.    What is 'Hungarian Notation'?
  32.    Are lines-of-code (LOC) a useful productivity measure?
  33.    Should software professionals be licenced/certified?
  34.    How do I get in touch with the SEI?
  35.    What is the SEI maturity model?
  36.    Where can I get information on API?
  37.    What's a 'bug'?
  38.    Where can I get copies of standards??
  39.  
  40.  
  41.  
  42. ------------------------------------------------------------------------
  43. Subject: What's a CASE Tool?
  44. Date: 26 Mar 1993
  45.  
  46.  
  47. (see also the archive file "casemsg") (thanks to Scott McGregor
  48. <mcgregor@netcom.com> for inspiring this question)
  49. CASE stands for Computer Aided Software Engineering;  it can be used to mean
  50. any computer-based tool for software planning, development, and evolution.
  51. Various people regularly call the following 'CASE': Structured Analysis (SA),
  52. Structured Design (SD), Editors, Compilers, Debuggers, Edit-Compile-Debug
  53. environments, Code Generators, Documentation Generators, Configuration
  54. Management, Release Management, Project Management, Scheduling, Tracking,
  55. Requirements Tracing, Change Management (CM), Defect Tracking, Structured
  56. Discourse, Documentation editing, Collaboration tools, Access Control,
  57. Integrated Project Support Environments (IPSEs), Intertool message systems,
  58. Reverse Engineering, Metric Analyzers.
  59.  
  60.  
  61. ------------------------------------------------------------------------
  62. Subject: What's a 'function point'?
  63. Date: 12 May 1992
  64.  
  65.  
  66. (see also the archive file "funcpoints")
  67.  
  68. Function points and feature points are methods of estimating the "amount of
  69. functionality" required for a program, and are thus used to estimate project
  70. completion time.  The basic idea involves counting inputs, outputs, and other
  71. features of a description of functionality.
  72.  
  73.  
  74. ------------------------------------------------------------------------
  75. Subject: What's the 'spiral model'?
  76. Date: 19 Sep 1991
  77.  
  78.  
  79. (see also the archive file "spiral")
  80. (1)  Barry Boehm, "A Spiral Model of Software Development and Enhancement",
  81.      ACM SIGSOFT Software Engineering Notes, August 1986.
  82. (2)  Barry Boehm "A Spiral Model of Software Development and Enhancement" IEEE
  83.      Computer, vol.21, #5, May 1988, pp 61-72.
  84.  
  85. Basically, the idea is incremental development, using the waterfall model for
  86. each step; it's intended to help manage risks.  Don't define in detail the
  87. entire system at first.  The developers should only define the highest
  88. priority features. Define and implement those.  With this knowledge, they
  89. should then go back to define and implement more features in smaller chunks.
  90.  
  91.  
  92. ------------------------------------------------------------------------
  93. Subject: What is a 'specmark'?
  94. Date: 19 Sep 1991
  95.  
  96.  
  97. (see also the archive file "specmark") The SPECmark is the geometric mean of a
  98. series of benchmarks done by the SPEC group. There are a couple of suites, but
  99. in general SPECmark refers to the results of the first suite.  The suite
  100. includes FORTRAN and C codes, mostly well known codes but slightly hacked
  101. versions.
  102.     SPEC
  103.     c/o NCGA
  104.     2722 Merrilee Drive, Suite 200
  105.     Fairfax, VA 22031
  106.     Phone: (703) 698-9600
  107.     FAX:   (703) 560-2752
  108.  
  109.  
  110. ------------------------------------------------------------------------
  111. Subject: Where can I find a public-domain tool to compute metrics?
  112. Date: 17 Jan 1992
  113.  
  114.  
  115. (see also the archive file "static") Volume 20 of newsgroup comp.sources.unix
  116. contained a public-domain package called "metrics", which computes McCabe and
  117. Halstead metrics.  There are many comp.sources.unix archives around the net.
  118.  
  119.  
  120. ------------------------------------------------------------------------
  121. Subject: How do I write good C style?
  122. Date: 19 Sep 1991
  123.  
  124.  
  125. This is answered regularly in the comp.lang.c FAQ.  Try "Recommended C style
  126. and Coding Standards", on host archive.cis.ohio-state.edu (128.146.8.52) via
  127. anonymous ftp in directory pub/style-guide.
  128.  
  129.  
  130. ------------------------------------------------------------------------
  131. Subject: What is 'Hungarian Notation'?
  132. Date: 19 Sep 1991
  133.  
  134.  
  135. (see also the archive file "hungarian") A naming convention for C code.  See
  136. Charles Simonyi and Martin Heller, "The Hungarian Revolution", BYTE, Aug. 1991
  137. (vol. 16, no. 8).  There are other naming conventions;  see, e.g.  "A Guide to
  138. Natural Naming", Daniel Keller, ETH, Projekt-Zentrum IDA, CH-8092 Zurich,
  139. Switzerland. Published in SIGPLAN Notices, Vol. 25, No. 5, pages 95-102.
  140.  
  141.  
  142. ------------------------------------------------------------------------
  143. Subject: Are lines-of-code (LOC) a useful productivity measure?
  144. Date: 26 Jan 1993
  145.  
  146.  
  147. (see also the archive file "static") Not unless you are very careful.  Capers
  148. Jones' book has a detailed and insightful discussion of Lines of Code,
  149. including anomalies, and shows how to use it sensibly (eg in a single job
  150. shop, with a single language, and a standard company coding style).  It is
  151. easy to cook up anomalies where LOC gives different numbers for code written
  152. in different styles, but pathological cases should get caught in code
  153. inspections.  References:
  154. -    T. Capers Jones, Programming Productivity, McGraw-Hill, New York, 1986
  155. -    Capers Jones, Applied Software Measurement: Assuring Productivity and
  156.      Quality, McGraw-Hill, Inc., 1991, 494 pages ISBN 0-07-032813-7
  157.  
  158. The appendices of the latter give rules for counting procedural source code,
  159. as well as rules for counting function points and feature points.  The
  160. following study, cited in Boehm's _S_o_f_t_w_a_r_e _E_n_g_i_n_e_e_r_i_n_g _E_c_o_n_o_m_i_c_s, claims that
  161. anomalies that seriously "fool" the LOC metric show up rarely in real code.
  162. -    R. Nelson _S_o_f_t_w_a_r_e _D_a_t_e _C_o_l_l_e_c_t_i_o_n _a_n_d _A_n_a_l_y_s_i_s _a_t _R_A_D_C, Rome Air
  163.      Development Center, Rome, NY.  1978.
  164.  
  165.  
  166. ------------------------------------------------------------------------
  167. Subject: Should software professionals be licenced/certified?
  168. Date: 19 Sep 1991
  169.  
  170.  
  171. This is a very controversial and political question.  Generally, certification
  172. is something voluntary, while licencing is regulated by governments.
  173. Certification generally means some agency warrants you meet its standards;
  174. licencing generally means that to claim to practice a certain profession
  175. requires a government licence, often administered through a professional
  176. organization.  In theory both are supposed to help judge if someone is capable
  177. of doing certain jobs.
  178.  
  179. Licencing isn't currently required for computing professionals;  some people
  180. would like to see some jobs require it, as with established branches of
  181. engineering.  Others don't like government intervention, and/or believe many
  182. people who wouldn't get licenced are perfectly competent.
  183.  
  184. Computing professionals in the USA have had a certification program for years,
  185. administered by the Institute for Certification of Computer Professionals
  186. (708-299-4227), a meta-organization with representatives from ACM, IEEE-CS,
  187. ADAPSO, ICCA, IACE, AIM, DPMA, AISP, COMMON, ASM, CIPS, and AWC.  There are
  188. three certificates aimed at different broad types of practitioner, and many
  189. areas of specialization.  To keep a certificate requires at least 40 hours of
  190. continuing education each year; credit can also be obtained for self-study,
  191. teaching, publication, etc.
  192.  
  193.  
  194. ------------------------------------------------------------------------
  195. Subject: How do I get in touch with the SEI?
  196. Date: 10 Apr 1992
  197.  
  198.  
  199. The customer relations department of the Software Engineering Institute can be
  200. reached at:
  201.     internet:  customer-relations@sei.cmu.edu
  202.     Phone:  (412) 268-5800
  203. A subscriber service is available to U.S. mailing addresses. Subscribers
  204. receive the SEI quarterly newsletter, Bridge; invitations to SEI public
  205. events; and first notification of course offerings and new publications.  To
  206. become a subscriber, contact Customer Relations.
  207.  
  208. To order an SEI publication, contact NTIS, DTIC, or RAI directly:
  209.     National Technical Information Service (NTIS)
  210.     U.S. Department of Commerce
  211.     Sprinfield, VA 22161-2103
  212.     Telephone: (703) 487-4600
  213.  
  214.     Defense Technical Information Center (DTIC)
  215.     ATTN: FDRA Cameron Station
  216.     Alexandria, VA 22304-6145
  217.     Telephone: (703) 274-7633
  218.  
  219.     Research Access Inc. (RAI)
  220.     3400 Forbes Avenue
  221.     Suite 302
  222.     Pittsburgh, PA 15213
  223.     Telephone: (412) 682-6530
  224.     FAX: (412) 682-6530
  225. For general information about the SEI, contact George Heidekat
  226. (grh@sei.cmu.edu).
  227.  
  228.  
  229. ------------------------------------------------------------------------
  230. Subject: What is the SEI maturity model?
  231. Date: 31 Jan 1992
  232. Originally-From: mcp@sei.cmu.edu (Mark Paulk)
  233.  
  234.  
  235. (see also the archive file "maturity")
  236.  
  237. Maturity is not an easy concept to get down to a single paragraph, but
  238. consider this.
  239.  
  240. Premise:  The quality of a software system is largely governed by the quality
  241. of the process used to develop and maintain the software.  Basics:  The first
  242. step in improving the existing situation is to get management buy-in and
  243. management action to clean up the software management processes (walk the
  244. talk, as TQMers frequently say).  Integration:  The second step is to get
  245. everyone working together as a team.  Measurement:  The third step is to
  246. establish objective ways of understanding status and predict where things are
  247. going in your process.  Continuous improvement:  Understand that this is
  248. building a foundation for continually getting better.
  249.  
  250.  
  251. ------------------------------------------------------------------------
  252. Subject: Where can I get information on API?
  253. Date: 14 Feb 1992
  254.  
  255.  
  256.  
  257. API stands for Application Programming Interface.  For general information on
  258. API standards, you can look at NIST Spec. Pub.  500-187, "Application
  259. Portability Profile." (contact Barbara Blickenstaff, 301-975-2816). Many of
  260. the open systems APIs are being developed in the IEEE POSIX groups.  An
  261. article in the Dec. 1991 IEEE Spectrum describes these and related API
  262. standards. IEEE standards aren't distributed electronically, but both of the
  263. documents above tell how to obtain copies.
  264.  
  265.  
  266. ------------------------------------------------------------------------
  267. Subject: What's a 'bug'?
  268. Date: 12 May 1992
  269.  
  270.  
  271.  
  272. You can take your pick:
  273. (1)  Don't use "bug", use "fault" (an incorrect instruction or definition),
  274.      "failure" (an incorrect result), or "mistake" (a human action leading to
  275.      a failure).  Paraphrased from
  276.          IEEE Standard Computer Dictionary
  277.          Standard 610, ISBN 1-55937-079-3
  278.          Institute of Electrical and Electronic Engineers, Inc.
  279.          345 East 47th Street
  280.          New York, NY 10017-2394  USA
  281.          $49.50 (US$) for IEEE members
  282. (2)  Beizer, in a footnote on page 33 of the second edition of _S_o_f_t_w_a_r_e
  283.      _T_e_s_t_i_n_g _T_e_c_h_n_i_q_u_e_s says (paraphrased):
  284.          I'm sticking with "bug" because everyone  knows  what  it  means,
  285.          there  are  several  "standards"  for other terms that are incon-
  286.          sistent with each other, the OED says that the conventional  com-
  287.          puter  meaning  of  "bug" is ancient, and short Anglo-Saxon words
  288.          are preferable to long Norman ones.
  289.  
  290.  
  291. ------------------------------------------------------------------------
  292. Subject: Where can I get copies of standards??
  293. Date: 26 Jan 1993
  294.  
  295.  
  296.  
  297. ISO, ANSI, and IEEE standards are usually sold to raise some of the funds
  298. that the various national and international standards bodies (who usually
  299. own the copyright) need to keep afloat; thus they are not normally avail-
  300. able electronically.  Also, the organizations are concerned that electron-
  301. ic copies would make it too easy for people to disseminate doctored ver-
  302. sions of the standards.
  303.  
  304. ISO standards may be purchased from:
  305. In Canada:
  306.     Standards Council of Canada / Conseil canadien des normes
  307.     1200-45 O'Connor,
  308.     Ottawa K1P 6N7
  309.     Phone: (613) 238-3222
  310.     Fax:   (613) 995-4564
  311. On CD-ROM:
  312.     Omnicom, Inc.
  313.     115 Park St. SE
  314.     Vienna, VA 22180-4607
  315.     1-800-OMNICOM
  316.     Also available through the National Technical Information Service
  317.     (NTIS), 5284 Port Royal Rd., Springfield, VA 22161, (703)
  318.     487-4650.
  319.  
  320. There were once some CCITT standards on-line at the University of Colorado,
  321. but the arrangement to make them available via the Internet was terminated at
  322. the end of 1991.
  323. -- 
  324. Software Technology Laboratory      dalamb@qucis.queensu.ca (David Alex Lamb)
  325. Computing and Information Science   phone: (613) 545-6067
  326. Queen's University, Kingston, Ontario, Canada K7L 3N6    
  327.